home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
IMGLIB95
/
IM_CVRT.DP_
/
IM_CVRT.DP
Wrap
Text File
|
1996-03-31
|
398b
|
20 lines
{image conversion utility. }
program Im_cvrt;
uses
Forms,
Bimage in 'BIMAGE.PAS' {ConvertForm1},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TConvertForm1, ConvertForm1);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.